home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / tool_inc.zip / READBAS.INT < prev    next >
Text File  |  1989-06-02  |  1KB  |  42 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. {$i \tinc\readbas.dcl}
  14.  
  15. procedure openfile(name: string65);
  16. function endfile: boolean;
  17. procedure closefile;
  18.  
  19. procedure getaline(var line: string;
  20.                   len:      integer);
  21.         {get any line}                  
  22.  
  23. procedure getline(var line: string;
  24.                   len:      integer);
  25.         {get line, ignore comments}
  26.  
  27. procedure getstr(var str: string;
  28.                  len:     integer);
  29. procedure getstrd(var str: string);
  30. procedure getint(var i: integer);
  31. procedure readint(var i: integer);
  32. procedure readword(var i: word);
  33. procedure readflag(var f: boolean);
  34. procedure vgetstr(var str: varstring);
  35. procedure vgetline(var str: varstring);
  36. procedure vgetstrd(var str: varstring);
  37.  
  38. procedure skipstr;
  39. procedure skipline;
  40. procedure skiplines(n: integer);
  41.  
  42.